home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
mouserec.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
171b
|
12 lines
CLS
While TRUE
Rect 280,10 to 300,200
If MouseRect (280, 10 to 300, 200) Then
Print "The cursor is in the box!"
Else
Print "The cursor is Not in the box!"
Endif
Wend
End